ComponentOne Data Source for Entity Framework
C1.Data Namespace / ClientView<T> Class / Include Method
A dot-separated list of related objects to load along with the entities of this client view.

In This Topic
    Include Method
    In This Topic
    Specifies related objects to include while loading the client view.
    Syntax
    'Declaration
     
    
    Public Overridable Function Include( _
       ByVal path As System.String _
    ) As ClientView(Of T)
    public virtual ClientView<T> Include( 
       System.string path
    )

    Parameters

    path
    A dot-separated list of related objects to load along with the entities of this client view.

    Return Value

    A client view that loads the related objects together with its entities every time it fetches entities from the server.
    See Also